Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
metaconfiguration
Advanced tools
npm install metaconfiguration --save
const { Config } = require('metaconfiguration');
Load configuration with asynchronous constructor:
const { Config } = require('metaconfiguration');
const config = await new Config('./configDirectory');
console.log(config);
// Output example:
// {
// logger: {
// enabled: true,
// keepDays: 100,
// writeInterval: 3000,
// writeBuffer: 65536,
// toStdout: [ 'system', 'fatal', 'error' ]
// },
// server: {
// transport: 'http',
// address: '127.0.0.1',
// ports: 80
// }
// }
or factory:
const { readConfig } = require('metaconfiguration');
const config = await readConfig('./configDirectory');
Specify certain configuration sections to load:
const { Config } = require('metaconfiguration');
const options = { names: ['application', 'gateway'] };
const config = await new Config('./configDirectory', options);
Loag configuration in specified mode:
const { Config } = require('metaconfiguration');
const options = { mode: 'test' };
const config = await new Config('./configDirectory', options);
Specify sections and mode:
const { Config } = require('metaconfiguration');
const options = { mode: 'test', names: ['application', 'gateway'] };
const config = await new Config('./configDirectory', options);
Use custom context (sandbox) to execute configuration js file in it:
const vm = require('node:vm');
const metautil = require('metautil');
const { Config } = require('metaconfiguration');
const sandbox = { Duration: metautil.duration };
vm.createContext(sandbox);
const options = { sandbox };
const config = await new Config('./configDirectory', options);
Copyright (c) 2019-2023 Metarhia contributors.
Metaconfiguration is MIT licensed.
Metaconfiguration is a part of Metarhia technology stack.
FAQs
Metarhia Configuration Loader
We found that metaconfiguration demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.